window: Fix the default value of mnemonics-visible
authorMatthias Clasen <mclasen@redhat.com>
Sun, 23 Jun 2019 14:55:10 +0000 (14:55 +0000)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 23 Jun 2019 14:59:17 +0000 (10:59 -0400)
They aren't visible, so why should the property
be TRUE?

gtk/gtkwindow.c

index 74110cc5c3c5c74f8d1bbbd53ab9baf22b9fad04..3730841f36d5147cf97ccf77cb2bd729cc1caa21 100644 (file)
@@ -903,7 +903,7 @@ gtk_window_class_init (GtkWindowClass *klass)
       g_param_spec_boolean ("mnemonics-visible",
                             P_("Mnemonics Visible"),
                             P_("Whether mnemonics are currently visible in this window"),
-                            TRUE,
+                            FALSE,
                             GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
 
   /**